home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Online / CNetDemo / cnet / sdk / include / vde.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-04  |  1.1 KB  |  46 lines

  1.  
  2. #ifndef CNET_VDE
  3. #define CNET_VDE
  4.  
  5. struct VDEentry {
  6.    char  text[48];
  7.  
  8.    short xpos,      /* where to print these things */
  9.          ypos;
  10.  
  11.    long  min,       /* for numerix */
  12.          max;       /* for numerix */
  13.  
  14.    short length,    /* for string entry, field size */
  15.                     /* for bit boolean, which bit? */
  16.  
  17.            type; /*  0 = UBYTE 0/1
  18.                      1 = ULONG BIT 0/1
  19.                      2 = Text (char *)
  20.                      3 = BYTE numeric
  21.                      4 = short numeric
  22.                      5 = USHORT numeric
  23.                      6 = long numeric
  24.                      7 = date
  25.                      8 = flags
  26.                      9 = ordered BBSTEXT list (UBYTE)
  27.                      10= ordered BBSMENU list (UBYTE)
  28.                      11= char **
  29.                      12= UBYTE BIT 0/1 */
  30.  
  31.    long  offset;      /* position in structure */
  32.  
  33.    short screen0,   /* belongs-to screen */
  34.          screen2;   /* goes-to screen, -1 for exit */
  35.  
  36.    short goup,      /* VDEentry for movement */
  37.          godown,
  38.          goleft,
  39.          goright;
  40.  
  41.    UWORD ghost;
  42. };
  43.  
  44.  
  45. #endif
  46.